gtk4.git
15 years agoopen-with: change the API to make it symmetric for GFile or content-type
Cosimo Cecchi [Tue, 16 Nov 2010 18:21:23 +0000 (19:21 +0100)]
open-with: change the API to make it symmetric for GFile or content-type

It's much more convenient this way.

15 years agotests: rewrite the GtkOpenWithDialog test to make it more interactive
Cosimo Cecchi [Tue, 16 Nov 2010 17:04:33 +0000 (18:04 +0100)]
tests: rewrite the GtkOpenWithDialog test to make it more interactive

Now you can play with all the options provided by GtkOpenWithDialog API.

15 years agoopen-with: add misc utility API to the dialog
Cosimo Cecchi [Tue, 16 Nov 2010 17:02:29 +0000 (18:02 +0100)]
open-with: add misc utility API to the dialog

- _set/get_show_other_applications() is a way to only display
  recommended applications in the dialog
- _set/get_show_set_as_default_button() is a way to control the
  "Remember this application" checkbox

We also get rid of he "application-selected" signal, in favour of a
_get_selected_application() API inspired by GtkFileChooser.

15 years agoopen-with: add xpadding to the treeview renderers
Cosimo Cecchi [Tue, 16 Nov 2010 14:14:11 +0000 (15:14 +0100)]
open-with: add xpadding to the treeview renderers

We use a GtkCellRenderer hack for this.

15 years agoopen-with: cope with NULL GAppInfo
Cosimo Cecchi [Tue, 16 Nov 2010 14:13:11 +0000 (15:13 +0100)]
open-with: cope with NULL GAppInfo

It's not that the GAppInfo can actually be NULL, but we use the store to
save headings too, which have no GAppInfo in their rows.

15 years agoopen-with: don't override the class signal handler, as it's RUN_LAST
Cosimo Cecchi [Tue, 16 Nov 2010 14:12:17 +0000 (15:12 +0100)]
open-with: don't override the class signal handler, as it's RUN_LAST

And explain why in a comment; basically we want our handler to always
run before client code.

15 years agoopen-with: don't use gtk_misc_* functions
Cosimo Cecchi [Tue, 16 Nov 2010 13:31:49 +0000 (14:31 +0100)]
open-with: don't use gtk_misc_* functions

They're so passe'!

15 years agoopen-with: add a "show-other-applications" property
Cosimo Cecchi [Tue, 16 Nov 2010 13:31:03 +0000 (14:31 +0100)]
open-with: add a "show-other-applications" property

This is useful for use-cases where showing a list of all the installed
applications can be confusing. We can control that with a property now.

15 years agoopen-with: initial implementation of GtkOpenWithDialog
Cosimo Cecchi [Tue, 16 Nov 2010 12:47:51 +0000 (13:47 +0100)]
open-with: initial implementation of GtkOpenWithDialog

15 years agoAdded UG translation
Gheyret T.Kenji [Sat, 20 Nov 2010 10:56:21 +0000 (11:56 +0100)]
Added UG translation

15 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Sat, 20 Nov 2010 10:48:08 +0000 (11:48 +0100)]
Updated Norwegian bokmål translation

15 years ago[gi] add array annotations for DnD related methods
John (J5) Palmieri [Fri, 19 Nov 2010 20:06:40 +0000 (15:06 -0500)]
[gi] add array annotations for DnD related methods

15 years agogtk: remove GtkWidget::size-request
Michael Natterer [Fri, 19 Nov 2010 18:38:48 +0000 (19:38 +0100)]
gtk: remove GtkWidget::size-request

Fixes Bug 633324 - Stop invoking size-request completely

15 years agoGtkRadioButtons: Mark group arguments as "allow-none"
Martin Pitt [Fri, 19 Nov 2010 09:19:32 +0000 (10:19 +0100)]
GtkRadioButtons: Mark group arguments as "allow-none"

In the current introspection data, the various gtk_radio_button_new_*
constructors take an existing group or widget. These all allow passing a NULL
widget or group list, so that it becomes easy to build a radio button list in a
loop (pass in None the first time, and the previously created button in all
other iterations).

Add the missing "allow-none" tag to the introspection data, so that this will
also eventually work for GIR users. NB that it does not actually work for some
constructors yet (like new_with_label_from_widget()) due to
https://bugzilla.gnome.org/show_bug.cgi?id=561264.

https://bugzilla.gnome.org/show_bug.cgi?id=635253

15 years agoCreate the icon pixmap with the system visual
Owen W. Taylor [Sun, 14 Nov 2010 14:38:32 +0000 (09:38 -0500)]
Create the icon pixmap with the system visual

Since what we are doing is turning an icon with alpha into a
no-alpha icon + mask for legacy window managers, it makes more sense
to use the system visual than the window's visual, which might
be ARGB.

https://bugzilla.gnome.org/show_bug.cgi?id=634821

15 years agodocs: Copy GtkSizeGroup ownership discussion to GtkWindowGroup
Evan Martin [Fri, 12 Nov 2010 18:43:20 +0000 (10:43 -0800)]
docs: Copy GtkSizeGroup ownership discussion to GtkWindowGroup

The two behave identically, so the text is the same with s/size/window/.

15 years agogtk: draw the frame around the spinbutton's buttons conditionally
Michael Natterer [Fri, 19 Nov 2010 13:55:47 +0000 (14:55 +0100)]
gtk: draw the frame around the spinbutton's buttons conditionally

(depending on GtkEntry::has-frame)

15 years agoconfigure: define GTK+ version before AC_INIT
Javier Jardón [Fri, 19 Nov 2010 08:01:39 +0000 (09:01 +0100)]
configure: define GTK+ version before AC_INIT

So the gtk_version varibale will be defined

15 years agogtkcombobox: Use accessor functions to access GtkTreeViewColumn
Javier Jardón [Fri, 19 Nov 2010 06:47:27 +0000 (07:47 +0100)]
gtkcombobox: Use accessor functions to access GtkTreeViewColumn

15 years agogtktreeview: Use accessor functions to access GtkTreeViewColumn
Javier Jardón [Fri, 19 Nov 2010 06:47:07 +0000 (07:47 +0100)]
gtktreeview: Use accessor functions to access GtkTreeViewColumn

15 years agogtkentry: move public members to private structure
Javier Jardón [Wed, 20 Oct 2010 15:14:11 +0000 (17:14 +0200)]
gtkentry: move public members to private structure

15 years agogail: Use accessor functions to access GtkEntry
Javier Jardón [Wed, 20 Oct 2010 17:22:46 +0000 (19:22 +0200)]
gail: Use accessor functions to access GtkEntry

Also, we can't access entry->preedit now. Commented that code until
some gail expert can fix it

15 years agoAdd _gtk_entry_get_im_context() internal accessor
Javier Jardón [Thu, 21 Oct 2010 12:06:47 +0000 (14:06 +0200)]
Add _gtk_entry_get_im_context() internal accessor

It's needed by gtktreeview

15 years agogtkcombobox: Do not access GtkEntry internals
Javier Jardón [Thu, 21 Oct 2010 11:39:42 +0000 (13:39 +0200)]
gtkcombobox: Do not access GtkEntry internals

It's not needed anymore

15 years agogail: we cant access button->in_button directly now.
Javier Jardón [Tue, 19 Oct 2010 16:46:07 +0000 (18:46 +0200)]
gail: we cant access button->in_button directly now.

Commented some code until some gail expert can fix this.

15 years agoCreate a private header to access some GtkButton variables
Javier Jardón [Tue, 19 Oct 2010 00:01:31 +0000 (02:01 +0200)]
Create a private header to access some GtkButton variables

15 years agogtktbutton: Move public members to private structure
Javier Jardón [Mon, 18 Oct 2010 17:39:19 +0000 (19:39 +0200)]
gtktbutton: Move public members to private structure

15 years agodocs: Improve cross-referencing in the migration guide
Javier Jardón [Fri, 19 Nov 2010 03:44:42 +0000 (04:44 +0100)]
docs: Improve cross-referencing in the migration guide

15 years agogtkplug: Do not leak in gtk_plug_realize()
Javier Jardón [Thu, 18 Nov 2010 16:47:04 +0000 (17:47 +0100)]
gtkplug: Do not leak in gtk_plug_realize()

Indeed, we should check for window->wmclass_name

Reported by Guillaume Desmottes in bug
https://bugzilla.gnome.org/show_bug.cgi?id=635175

15 years agoFixing GtkScrolledWindow inconsistent scrollbar visibility.
Tristan Van Berkom [Thu, 18 Nov 2010 15:53:19 +0000 (00:53 +0900)]
Fixing GtkScrolledWindow inconsistent scrollbar visibility.

Also removing the hack to prevent hangs which is properly fixed by
the preceeding commit.

15 years agoFixing hangs with GtkScrolledWindow
Tristan Van Berkom [Thu, 18 Nov 2010 15:53:13 +0000 (00:53 +0900)]
Fixing hangs with GtkScrolledWindow

Now gtk_widget_size_allocate() unsets the resize_needed flags
before returning, essentially this means that any widget that
has a queued resize and is allocated before resize time, including
queued resizes from inside a size_allocate() method will be
cancelled.

15 years agogtk: honor entry->has_frame again draw the frame conditionally
Michael Natterer [Thu, 18 Nov 2010 00:04:11 +0000 (01:04 +0100)]
gtk: honor entry->has_frame again draw the frame conditionally

when GtkEntry had visible windows, it was never noticed that we always
draw the frame, because the text_area window would cover it if
draw_frame was FALSE.

15 years agogtk: draw the progress only on the text area
Michael Natterer [Thu, 18 Nov 2010 00:02:57 +0000 (01:02 +0100)]
gtk: draw the progress only on the text area

so it doesn't extend under GtkSpinButton's buttons.

15 years agodemos: Replace size_request by get_preferred_width/height
Javier Jardón [Wed, 17 Nov 2010 22:56:48 +0000 (23:56 +0100)]
demos: Replace size_request by get_preferred_width/height

15 years agogtkoffscreenbox.c: Replace size_request by get_preferred_width/height
Javier Jardón [Wed, 17 Nov 2010 21:57:45 +0000 (22:57 +0100)]
gtkoffscreenbox.c: Replace size_request by get_preferred_width/height

15 years agodocs: Move Height-for-width geometry management virtual methods docs
Javier Jardón [Wed, 17 Nov 2010 21:55:59 +0000 (22:55 +0100)]
docs: Move Height-for-width geometry management virtual methods docs

15 years agoFix for Catalan translation
Jordi Mas [Wed, 17 Nov 2010 00:39:20 +0000 (19:39 -0500)]
Fix for Catalan translation

15 years agobgo#634558 - filechooser - Actually focus the Search entry when selecting the Search...
Federico Mena Quintero [Tue, 16 Nov 2010 16:56:34 +0000 (10:56 -0600)]
bgo#634558 - filechooser - Actually focus the Search entry when selecting the Search shortcut

Signed-off-by: Federico Mena Quintero <federico@novell.com>
15 years ago[gi] add "array" annotations to GtkAboutDialog methods
John (J5) Palmieri [Mon, 15 Nov 2010 17:34:16 +0000 (12:34 -0500)]
[gi] add "array" annotations to GtkAboutDialog methods

* set_authors, set_documenters and  set_artists required the array annotation
  to work properly

15 years agogtkmain: Remove deprecated gtk_init_add() function
Javier Jardón [Wed, 13 Oct 2010 01:05:22 +0000 (03:05 +0200)]
gtkmain: Remove deprecated gtk_init_add() function

https://bugzilla.gnome.org/show_bug.cgi?id=629955

15 years agoDeprecate GtkCallbackMarshal and GtkFunction
Javier Jardón [Tue, 19 Oct 2010 09:47:27 +0000 (11:47 +0200)]
Deprecate GtkCallbackMarshal and GtkFunction

As they're only used by already deprecated API

https://bugzilla.gnome.org/show_bug.cgi?id=629955

15 years agoGtkArg is deprecated since 2.2
Javier Jardón [Tue, 16 Nov 2010 05:43:16 +0000 (06:43 +0100)]
GtkArg is deprecated since 2.2

15 years agodocs: Add cross-reference in GtkAlign docs
Javier Jardón [Tue, 16 Nov 2010 02:51:53 +0000 (03:51 +0100)]
docs: Add cross-reference in GtkAlign docs

15 years agodocs: Fix a typo in gtk_button_set_alignment() docs
Javier Jardón [Tue, 16 Nov 2010 02:37:09 +0000 (03:37 +0100)]
docs: Fix a typo in gtk_button_set_alignment() docs

15 years agodocs: Remove template of unused functions
Javier Jardón [Mon, 15 Nov 2010 19:42:50 +0000 (20:42 +0100)]
docs: Remove template of unused functions

15 years agodocs: Move documentation to inline comments: event_structs
Javier Jardón [Mon, 15 Nov 2010 19:41:44 +0000 (20:41 +0100)]
docs: Move documentation to inline comments: event_structs

All the GDK documentation is now moved to inline comments

15 years agodocs: Move documentation to inline comments: x_interaction
Javier Jardón [Mon, 15 Nov 2010 19:01:05 +0000 (20:01 +0100)]
docs: Move documentation to inline comments: x_interaction

15 years agodocs: Move documentation to inline comments: drawing
Javier Jardón [Mon, 15 Nov 2010 18:47:35 +0000 (19:47 +0100)]
docs: Move documentation to inline comments: drawing

15 years agodocs: Move documentation to inline comments: gdkthreads
Javier Jardón [Mon, 15 Nov 2010 18:37:28 +0000 (19:37 +0100)]
docs: Move documentation to inline comments: gdkthreads

15 years agodocs: Move documentation to inline comments: gdkevents
Javier Jardón [Mon, 15 Nov 2010 18:15:00 +0000 (19:15 +0100)]
docs: Move documentation to inline comments: gdkevents

15 years agodocs: Move documentation to inline comments: properties
Javier Jardón [Mon, 15 Nov 2010 16:59:52 +0000 (17:59 +0100)]
docs: Move documentation to inline comments: properties

15 years agodocs: Move documentation to inline comments: gdkselection
Javier Jardón [Mon, 15 Nov 2010 16:20:51 +0000 (17:20 +0100)]
docs: Move documentation to inline comments: gdkselection

15 years agodocs: Move documentation to inline comments: gdkvisual
Javier Jardón [Mon, 15 Nov 2010 16:05:05 +0000 (17:05 +0100)]
docs: Move documentation to inline comments: gdkvisual

15 years agodocs: Move documentation to inline comments: gdkpango
Javier Jardón [Mon, 15 Nov 2010 15:50:21 +0000 (16:50 +0100)]
docs: Move documentation to inline comments: gdkpango

15 years agodocs: Move documentation to inline comments: gdkcursor
Javier Jardón [Mon, 15 Nov 2010 15:41:31 +0000 (16:41 +0100)]
docs: Move documentation to inline comments: gdkcursor

15 years agogdk: Add big fat warning about updating XSettings
Bastien Nocera [Mon, 15 Nov 2010 17:13:46 +0000 (17:13 +0000)]
gdk: Add big fat warning about updating XSettings

There's a tool to see if we forgot to update the gdk_settings_map
array, or got the offsets wrong. Mention those above the XSettings
list.

15 years agogdk: Update gdk_settings_map for blink timeout to work
Bastien Nocera [Mon, 15 Nov 2010 17:02:40 +0000 (17:02 +0000)]
gdk: Update gdk_settings_map for blink timeout to work

gdk_settings_map needs to be updated when gdk_settings_names is changed,
and it's easier to add the setting at the end, so we don't need to
recalculate everything.

Really fixing:
https://bugzilla.gnome.org/show_bug.cgi?id=634697

15 years ago[gi] add "out" annotations to gtk_tree_store_sort_column_id params
John (J5) Palmieri [Mon, 15 Nov 2010 17:13:32 +0000 (12:13 -0500)]
[gi] add "out" annotations to gtk_tree_store_sort_column_id params

15 years agoUpdate Czech translation
Petr Kovar [Mon, 15 Nov 2010 05:07:55 +0000 (06:07 +0100)]
Update Czech translation

15 years agodocs: gdkrgba: Add "Since: 3.0" tags
Javier Jardón [Mon, 15 Nov 2010 04:56:00 +0000 (05:56 +0100)]
docs: gdkrgba: Add "Since: 3.0" tags

15 years agodocs: Remove GdkPixmap template
Javier Jardón [Mon, 15 Nov 2010 04:39:25 +0000 (05:39 +0100)]
docs: Remove GdkPixmap template

15 years agodocs: Move documentation to inline comments: general
Javier Jardón [Mon, 15 Nov 2010 03:58:21 +0000 (04:58 +0100)]
docs: Move documentation to inline comments: general

15 years agodocs: Move documentation to inline comments: gdkkeys
Javier Jardón [Mon, 15 Nov 2010 03:34:40 +0000 (04:34 +0100)]
docs: Move documentation to inline comments: gdkkeys

15 years agodocs: move documentation to inline comments: gdktesting
Javier Jardón [Mon, 15 Nov 2010 02:55:43 +0000 (03:55 +0100)]
docs: move documentation to inline comments: gdktesting

15 years agodocs: Move documentation to inline comments: gdkscreen
Javier Jardón [Mon, 15 Nov 2010 02:51:30 +0000 (03:51 +0100)]
docs: Move documentation to inline comments: gdkscreen

15 years agodocs: Move documentation to inline comments: gdkdisplaymanager
Javier Jardón [Mon, 15 Nov 2010 02:43:54 +0000 (03:43 +0100)]
docs: Move documentation to inline comments: gdkdisplaymanager

15 years agodocs: Move documentation to inline comments: gdkdisplay
Javier Jardón [Mon, 15 Nov 2010 02:37:21 +0000 (03:37 +0100)]
docs: Move documentation to inline comments: gdkdisplay

15 years agodocs: Move documentation to inline comments: gdkapplaunchcontext
Javier Jardón [Mon, 15 Nov 2010 02:18:45 +0000 (03:18 +0100)]
docs: Move documentation to inline comments: gdkapplaunchcontext

15 years agoFixes wrong translation for Catalan
Jordi Mas [Sun, 14 Nov 2010 19:53:24 +0000 (14:53 -0500)]
Fixes wrong translation for Catalan

15 years agoUpdated British English translation
Bruce Cowan [Sun, 14 Nov 2010 14:35:29 +0000 (14:35 +0000)]
Updated British English translation

15 years agodocs: Mention that tooltip_column text should be escaped in GtkIconView
Carlos Garcia Campos [Sun, 14 Nov 2010 11:39:48 +0000 (12:39 +0100)]
docs: Mention that tooltip_column text should be escaped in GtkIconView

15 years agodocs: Do not refer to deprecated GNOME2 porting guide
Javier Jardón [Sun, 14 Nov 2010 00:55:23 +0000 (01:55 +0100)]
docs: Do not refer to deprecated GNOME2 porting guide

But to the related sections of Pango manual

15 years agodocs: Update URL of some documentation links
Javier Jardón [Sun, 14 Nov 2010 00:21:35 +0000 (01:21 +0100)]
docs: Update URL of some documentation links

http://developer.gnome.org -> http://library.gnome.org

15 years agoAdded UG translation
Gheyret T.Kenji [Sat, 13 Nov 2010 21:39:03 +0000 (22:39 +0100)]
Added UG translation

15 years agoUpdated Hungarian translation
Gabor Kelemen [Sat, 13 Nov 2010 15:48:38 +0000 (16:48 +0100)]
Updated Hungarian translation

15 years agoUpdated Arabic translation
Khaled Hosny [Sat, 13 Nov 2010 01:14:50 +0000 (03:14 +0200)]
Updated Arabic translation

15 years agoexamples/gtkdial: Do not use size_request vfunc
Javier Jardón [Thu, 11 Nov 2010 04:03:06 +0000 (05:03 +0100)]
examples/gtkdial: Do not use size_request vfunc

15 years agoFix a crash in gnome-terminal when using a compositor
Matthias Clasen [Sat, 13 Nov 2010 00:19:48 +0000 (19:19 -0500)]
Fix a crash in gnome-terminal when using a compositor

In this case, gnome-terminal sets an RGBA visual on its window,
and we need to be careful when creating the icon pixmap, to create
the pixmap with the same depth as the visual, or we risk a BadMatch
from XRenderCreatePicture deep inside cairo.

15 years agogdk: Add XSetting for "gtk-cursor-blink-timeout"
Bastien Nocera [Fri, 12 Nov 2010 17:00:09 +0000 (17:00 +0000)]
gdk: Add XSetting for "gtk-cursor-blink-timeout"

Otherwise the blink timeout is the one used by default in GTK+.

https://bugzilla.gnome.org/show_bug.cgi?id=634697

15 years agoRemove no longer existing files
Matthias Clasen [Thu, 11 Nov 2010 19:12:04 +0000 (14:12 -0500)]
Remove no longer existing files

The gdk-pixbuf VC project files are gone, so don't reference
them from Makefile.am anymore.

15 years agoReally get rid of _gtk_cell_renderer_calc_offset
Matthias Clasen [Thu, 11 Nov 2010 19:09:29 +0000 (14:09 -0500)]
Really get rid of _gtk_cell_renderer_calc_offset

15 years agoPass the correct GDK library when working around Debian libtool
Owen W. Taylor [Wed, 10 Nov 2010 22:08:40 +0000 (17:08 -0500)]
Pass the correct GDK library when working around Debian libtool

We need to link against gdk/libgdk-x11-3.0.la, not
gdk/x11/libgdk-x11.la, which is the convenience library containing
the backend functions.

15 years agoUpdated Traditional Chinese translation (Hong Kong and Taiwan)
Chao-Hsiung Liao [Wed, 10 Nov 2010 11:37:39 +0000 (19:37 +0800)]
Updated Traditional Chinese translation (Hong Kong and Taiwan)

15 years agogtk_dialog_get_content_area(): Fix the docs.
Murray Cumming [Wed, 10 Nov 2010 10:35:34 +0000 (11:35 +0100)]
gtk_dialog_get_content_area(): Fix the docs.

This returns a GtkBox now, not a GtkVBox.
Language bindings may need to adjust their APIs accordingly.

15 years agogtkdialog.c: Remove trailing whitespace
Murray Cumming [Wed, 10 Nov 2010 10:35:09 +0000 (11:35 +0100)]
gtkdialog.c: Remove trailing whitespace

15 years agoPrint files to Documents directory by default
Marek Kasik [Wed, 10 Nov 2010 09:48:17 +0000 (10:48 +0100)]
Print files to Documents directory by default

Set default directory to G_USER_DIRECTORY_DOCUMENTS
when printing to file backend and fallback to the current
directory when it is not available (#633896).

15 years agogtk.vcprojin: include .rc file
Chun-wei Fan [Wed, 10 Nov 2010 02:30:03 +0000 (10:30 +0800)]
gtk.vcprojin: include .rc file

15 years agogtk+.sln: Remove GDK-Pixbuf compilation stuff
Chun-wei Fan [Wed, 10 Nov 2010 02:28:02 +0000 (10:28 +0800)]
gtk+.sln: Remove GDK-Pixbuf compilation stuff

GDK-Pixbuf is in a package of its own, so remove the project files from here

15 years agogtk+.vsprops: Update for GTK-3.0
Chun-wei Fan [Wed, 10 Nov 2010 02:25:05 +0000 (10:25 +0800)]
gtk+.vsprops: Update for GTK-3.0

-removed headers that ceased to exist
-bump API version
-made up for new headers that is to be installed
-gtk-demo program and related sources/data copied to bin/gtk3-demo

15 years agogtklabel.c: Added hack for rint()
Chun-wei Fan [Wed, 10 Nov 2010 02:21:08 +0000 (10:21 +0800)]
gtklabel.c: Added hack for rint()

15 years agogtkwocket-win32.c Added missing include to avoid C4013
Chun-wei Fan [Wed, 10 Nov 2010 02:15:45 +0000 (10:15 +0800)]
gtkwocket-win32.c Added missing include to avoid C4013

15 years agoMerge ssh://git.gnome.org/git/gtk+
Chun-wei Fan [Wed, 10 Nov 2010 02:14:13 +0000 (10:14 +0800)]
Merge ssh://git.gnome.org/git/gtk+

15 years agogtk: fix C99-style variable declarations in various sources
Chun-wei Fan [Wed, 10 Nov 2010 02:08:14 +0000 (10:08 +0800)]
gtk: fix C99-style variable declarations in various sources

15 years ago[introspection] mark invokers for gtkeditable vfuncs
John (J5) Palmieri [Wed, 10 Nov 2010 01:57:56 +0000 (20:57 -0500)]
[introspection] mark invokers for gtkeditable vfuncs

15 years ago[introspection] add transfer none annotation to gdk_keyval_name return
John (J5) Palmieri [Fri, 29 Oct 2010 19:53:37 +0000 (15:53 -0400)]
[introspection] add transfer none annotation to gdk_keyval_name return

* moved docs from .sgml file to th e.c file so we can add the annotation

15 years agobump version
Matthias Clasen [Tue, 9 Nov 2010 20:24:50 +0000 (15:24 -0500)]
bump version

15 years agofix up accidental exports
Matthias Clasen [Tue, 9 Nov 2010 18:51:55 +0000 (13:51 -0500)]
fix up accidental exports

15 years agoAnother attempt at scrolledwindow size allocation
Matthias Clasen [Tue, 9 Nov 2010 18:15:04 +0000 (13:15 -0500)]
Another attempt at scrolledwindow size allocation

Patches taken from bug 633278.

15 years agointrospection: Explicitly include libgdk-x11.la when scanning gtk
Colin Walters [Thu, 28 Oct 2010 20:45:08 +0000 (16:45 -0400)]
introspection: Explicitly include libgdk-x11.la when scanning gtk

Debian changed the behavior of libtool to not follow dependencies
from .la files.  Fortunately, the scanner explicitly looks at the
.la files to see if they're really shared; if not it doesn't add
them to the .gir, so there's no cost.

https://bugzilla.gnome.org/show_bug.cgi?id=633405

15 years agoRewrap text in gtk-demo
Matthias Clasen [Tue, 9 Nov 2010 16:20:17 +0000 (11:20 -0500)]
Rewrap text in gtk-demo